bufio.Scanner.end (field)
14 uses
bufio (current package)
scan.go#L36: end int // End of data in buf.
scan.go#L149: if s.end > s.start || s.err != nil {
scan.go#L150: advance, token, err := s.split(s.buf[s.start:s.end], s.err != nil)
scan.go#L185: s.end = 0
scan.go#L191: if s.start > 0 && (s.end == len(s.buf) || s.start > len(s.buf)/2) {
scan.go#L192: copy(s.buf, s.buf[s.start:s.end])
scan.go#L193: s.end -= s.start
scan.go#L197: if s.end == len(s.buf) {
scan.go#L210: copy(newBuf, s.buf[s.start:s.end])
scan.go#L212: s.end -= s.start
scan.go#L219: n, err := s.r.Read(s.buf[s.end:len(s.buf)])
scan.go#L220: if n < 0 || len(s.buf)-s.end < n {
scan.go#L224: s.end += n
scan.go#L248: if n > s.end-s.start {
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |